home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software USA: Back to School
/
Software USA: Back to School.iso
/
pc
/
children
/
decoder
/
run
/
decoder.exe
/
decoder.dxr
/
script_7.ls
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-11-19
|
347 b
|
14 lines
global gValidKeyList, gUpperCaseTable
on keyDown
if (the number of chars in field "To be Encoded" >= 80) and (the keyCode <> 51) then
alert("The message should not exceed 80 characters!")
exit
end if
if getOne(gValidKeyList, the key) or (the keyCode = 51) then
pass()
else
alert("This is not a valid input!")
end if
end